Add docker setup#68
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: e1d4b65980
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| Build the Docker image: | ||
|
|
||
| ```bash | ||
| docker build -t argus . |
There was a problem hiding this comment.
Rename the Dockerfile to match Docker defaults
With the build file committed as lowercase dockerfile, the documented docker build -t argus . command here will not find it on case-sensitive filesystems such as Linux CI; Docker's default build path is a file literally named Dockerfile unless -f is supplied. Rename the file to Dockerfile or change this command to docker build -f dockerfile -t argus . so the new Docker setup works as documented.
Useful? React with 👍 / 👎.
What changed?
Related issue
Closes #41
Tests
pytestChecklist
Notes